#selstart#<!--To test for cookies, set a cookie on the first page then on the next use the folllowing to check
if cookies were set (you can not set and read a cookie on the same page):-->#selend#

<!--Place in head-->
<meta http-equiv="Set-Cookie" content="BROWSER=SUPPORTS_COOKIES; path=/">
<meta http-equiv="Set-Cookie" content="Cookie=Non-Exchange; path=/">

<!--create a function-->
if (document.cookie.length>0) {
    
}
else {
     alert("Please turn on your cookies, it is harmless");
     window.location="no_cookies.lasso";
}
